home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _54B889FDD6934D668DB8D91F07F5E854 < prev    next >
Encoding:
Text File  |  2006-08-04  |  802 b   |  30 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for RoughLeather effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_RoughLeather():
  14.     return {
  15.         'Luminance': 135,
  16.         'LightColor': (255, 255, 255),
  17.         'Sharpness': 14,
  18.         'Blur': 10,
  19.         'GeneralSettings': {
  20.             'AutoActionMode': 0,
  21.             'ExecutionMode': 0
  22.             },
  23.         'Angle': 45,
  24.         'LeatherColor': (0, 0, 0),
  25.         'Contrast': 5
  26.         }
  27.  
  28. def Do(Environment):
  29.     App.Do( Environment, 'RoughLeather', Preset_RoughLeather())
  30.